home *** CD-ROM | disk | FTP | other *** search
- from JascApp import *
-
- def ScriptProperties():
- return {
- 'Author': 'PSP 7 Preset Converter',
- 'Copyright': '',
- 'Description': 'Wood grain Texture preset',
- 'Host': 'Paint Shop Pro 8',
- 'Host Version': '8.00',
- }
-
- def Preset_Texture():
- return {
- 'GeneralSettings': {
- 'AutoActionMode': 0,
- 'ExecutionMode': 0
- },
- 'Color': (255, 255, 255),
- 'Depth': 9,
- 'TextureName': 'Woodgrain',
- 'Angle': 243,
- 'Ambience': 0,
- 'Elevation': 31,
- 'Size': 100,
- 'Intensity': 50,
- 'Smoothness': 0,
- 'Shininess': 0,
- }
-
- def Do(Environment):
- App.Do(Environment, 'Texture', Preset_Texture())
-